home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / CronVixie2.1 / next-diffs < prev    next >
Text File  |  1995-06-12  |  2KB  |  82 lines

  1. Makefile:
  2. ===================================================================
  3. RCS file: RCS/Makefile,v
  4. retrieving revision 2.3
  5. diff -r2.3 Makefile
  6. 63,64c63,64
  7. < #OPTIM        =    -O
  8. < OPTIM        =    -g
  9. ---
  10. > OPTIM        =    -O
  11. > #OPTIM        =    -g
  12. 71c71,72
  13. < COMPAT        =    -DBSD
  14. ---
  15. > #COMPAT        =    -DBSD
  16. > COMPAT        =    -DBSD -bsd
  17.  
  18. README:
  19. ===================================================================
  20. RCS file: RCS/README,v
  21. retrieving revision 2.2
  22. diff -r2.2 README
  23. 0a1,4
  24. > NOTE:  This software was modified by Irving_Wolfe@Happy-Man.com to
  25. > compile on the NeXT 040 under NextStep 2.1.  All changes are 
  26. > detailed in the file next-diffs.  I don't think I broke anything.
  27.  
  28. crond.c:
  29. ===================================================================
  30. RCS file: RCS/crond.c,v
  31. retrieving revision 2.1
  32. diff -r2.1 crond.c
  33. 56a57
  34. >     static int    sigchld_handler();
  35. 58c59
  36. <             sigchld_handler(), parse_args(), run_reboot_jobs();
  37. ---
  38. >             parse_args(), run_reboot_jobs();
  39. 257c258
  40. < static void
  41. ---
  42. > static int
  43. 258a260,266
  44. > {
  45. >     static void x_sigchld_handler();
  46. >     x_sigchld_handler();
  47. >     return 0;
  48. > }
  49. > static void
  50. > x_sigchld_handler()
  51.  
  52. crontab.c:
  53. ===================================================================
  54. RCS file: RCS/crontab.c,v
  55. retrieving revision 2.2
  56. diff -r2.2 crontab.c
  57. 89c89
  58. <     void    parse_args(), set_cron_uid(), set_cron_cwd(),
  59. ---
  60. >     static void    parse_args(), set_cron_uid(), set_cron_cwd(),
  61. 255c255
  62. <     void    poke_daemon();
  63. ---
  64. >     static void    poke_daemon();
  65. 290c290
  66. <     void    poke_daemon();
  67. ---
  68. >     static void    poke_daemon();
  69.  
  70. do_command.c:
  71. ===================================================================
  72. RCS file: RCS/do_command.c,v
  73. retrieving revision 2.1
  74. diff -r2.1 do_command.c
  75. 71c71,72
  76. <     extern void    child_process(), log_it();
  77. ---
  78. >     extern void    log_it();
  79. >     static void    child_process();
  80.  
  81.